home *** CD-ROM | disk | FTP | other *** search
- package Forms
- {
- import flash.events.MouseEvent;
- import flash.text.TextField;
-
- [Embed(source="/_assets/assets.swf", symbol="Forms.QuitForm")]
- public class QuitForm extends CluelessBaseForm
- {
-
-
- public var _bBack:ButtonRound;
-
- internal var _sProfileName:String = "";
-
- public var _bQuit:ButtonRound;
-
- public var _tfText:TextField;
-
- public function QuitForm()
- {
- _sProfileName = "";
- super();
- setBackButton(_bBack);
- installMouseOverSound(_bQuit);
- installMouseOverSound(_bBack);
- _bQuit.addEventListener(MouseEvent.CLICK,onQuit,false,0,true);
- }
-
- protected function onQuit(param1:MouseEvent) : void
- {
- setFormPermanent(new UpsellForm());
- }
- }
- }
-